Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 11 |
Ratio | 100 % |
Changes | 0 |
1 | View Code Duplication | const DB = require('../../libraries/db') |
|
25 | first: async function (id) { |
||
26 | |||
27 | let result = DB.readMysql.first( |
||
28 | '*' |
||
29 | ) |
||
30 | .from(table) |
||
31 | .where('seller_id', id) |
||
32 | |||
33 | return await result |
||
34 | |||
35 | }, |
||
36 | |||
44 |